dise1
con Excel preparare tabella dati
numerici:selezionare dati e salvare come testo
(tabella2.prn......tabella3.prn)
in cartella c:\provagnu......richiamare i dati con PLOT
tabella2.prn
1 2 7 8 2 4 8 9 3 3 5 4 4 8 6 5 5 2 4 6 6 9 9 3 7 4 8 4 8 7 7 8 9 5 5 7 10 9 3 5
tabella3.prn
1 2 7 3 2 4 8 2 3 3 5 6 4 8 6 5 5 2 4 6 6 9 9 9 7 4 8 3 8 7 7 5 9 5 5 2 10 9 3 5
(copiare listato che segue su gnuplot> per visualizzare il risultato
set grid
set xrange[0:30]
set yrange[0:30]
show label
pause -1
plot 'c:\provagnu\tabella2.prn'
using 1:2 title 'curva1' with line 1
pause -1
replot
'c:\provagnu\tabella3.prn' using 2:3 title 'curva2' with impulses
2
pause -1
replot 'c:\provagnu\tabella2.prn' using 1:($1+$2 ) title 'curva3' with line 4
pause -1